home *** CD-ROM | disk | FTP | other *** search
/ Multimedia Dogs / Multimedia Dogs v2.0.iso / mac / Multimedia Dogs 2.0 / MMDOGS2.DXR / 00362.ls < prev    next >
Encoding:
Text File  |  1995-10-09  |  336 b   |  14 lines

  1. global gNTAnswerSprite, gNTAnswerLabelSprite
  2.  
  3. on mouseDown
  4.   set theList to []
  5.   append(theList, the clickOn)
  6.   append(theList, the clickOn + gNTAnswerLabelSprite - gNTAnswerSprite)
  7.   customButtonBehaviorMultiple(theList)
  8.   if rollOver(the clickOn) then
  9.     waitCursor()
  10.     handleNTAnswer(the clickOn)
  11.     pointerCursor()
  12.   end if
  13. end
  14.